func github.com/andybalholm/brotli.brotli_max_uint32_t

12 uses

	github.com/andybalholm/brotli (current package)
		bit_cost.go#L77: 		var histomax uint32 = brotli_max_uint32_t(histo0, brotli_max_uint32_t(histo1, histo2))
		bit_cost.go#L102: 		histomax = brotli_max_uint32_t(h23, histo[0])
		bit_cost.go#L208: 		var histomax uint32 = brotli_max_uint32_t(histo0, brotli_max_uint32_t(histo1, histo2))
		bit_cost.go#L233: 		histomax = brotli_max_uint32_t(h23, histo[0])
		bit_cost.go#L339: 		var histomax uint32 = brotli_max_uint32_t(histo0, brotli_max_uint32_t(histo1, histo2))
		bit_cost.go#L364: 		histomax = brotli_max_uint32_t(h23, histo[0])
		brotli_bit_stream.go#L919: 		max_reps = brotli_max_uint32_t(reps, max_reps)
		entropy_encode.go#L147: 				var count uint32 = brotli_max_uint32_t(data[i], count_limit)
		platform.go#L81: func brotli_max_uint32_t(a uint32, b uint32) uint32 {